Package xlsx4j.workingwithworksheet

Source Code of xlsx4j.workingwithworksheet.AddCommentsAspose

package xlsx4j.workingwithworksheet;

import com.aspose.cells.Comment;
import com.aspose.cells.Font;
import com.aspose.cells.SaveFormat;
import com.aspose.cells.Workbook;
import com.aspose.cells.Worksheet;

/**
* @author Shoaib Khan
*/
public class AddCommentsAspose
{
  public static void main(String[] args) throws Exception
  {
    //Instantiating a Workbook object
    Workbook workbook = new Workbook();

    //Adding a new worksheet to the Workbook object
    Worksheet worksheet = workbook.getWorksheets().get(0);

    //Adding a comment to cell
    int commentIndex = worksheet.getComments().add("A1");
    Comment comment = worksheet.getComments().get(commentIndex);

    //Setting the comment note
    comment.setNote("Hello Aspose!");
   
    //Setting the font size of a comment to 14
    Font font = comment.getFont();
    font.setSize(14);
    //Setting the font of a comment to bold
    font.setBold(true);

    //Setting the height of the font to 10
    comment.setHeightCM(10);

    //Setting the width of the font to 2
    comment.setWidthCM(2);

    //Saving the Excel file
    workbook.save("data/xlsx4j/AddComments-Aspose.xlsx", SaveFormat.XLSX);
   
    //Print Message
      System.out.println("Comment added successfully.");
  }
}
TOP

Related Classes of xlsx4j.workingwithworksheet.AddCommentsAspose

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.